
footer {
    width: 100vw;
    bottom: 0em;
    position: static; 
    background: rgb(0, 0, 0);
    padding: 100px 0 30px;
    font-size: 1em;
    line-height: 20px;
}


footer .row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    top: -3em;
}

.col{
    flex-basis: 25%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.lg{
    margin-top: 3em;
    margin-right: 2em;
    position: relative;
    left: -4em;
}


.col .logo h1{
    padding-bottom: 0.7em;
    font-size: 4.5em;
    color: #fff;
    text-align: center;
    text-shadow: 6px 5px 20px rgba(0, 0, 0, 0.219);
}

.col .logo .rd{
    color: rgb(255, 213, 0);
}

.col .logo .yl{
    color: rgb(255, 0, 0);
}

.col .logodis{
    color: #fff;
    font-size: 1.3em;
    line-height: 35px;
    font-weight: bold;
    text-align: center;
    margin-top: 1.5em;
    transition: color 0.4s ease;
}

.col .logodis:hover{
    color: #ff3c00;
    cursor: pointer;
}

.head6{
    margin-top: -1em;
    margin-bottom: 2em;
    font-size: 1.4em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: rgb(255, 0, 0);
    text-decoration-thickness: 4px;
}


.head7{
    margin-top: -1em;
    margin-bottom: 2em;
    font-size: 1.4em;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: rgb(255, 213, 0);
    text-decoration-thickness: 4px;
}


.otherlinks{
    margin-left: -3em;
}

.links{
    margin-top: 4em;
    position: relative;
    left: -6em;
}

.links ul {
    padding: 0;
    list-style-type: none;
    text-align: center; 
    position: relative;
    top: 1em;
}

.otherlinks ul {
    padding: 0;
    list-style-type: none;
    text-align: center; 
    position: relative;
    top: 3em;
}

.links ul li {
    margin-bottom: 18px; 
}

.links ul li a {
    text-decoration: none;
    color: #ffffffb6;
    font-size: 1.3em;
    position: relative;
}

.links ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.3vh;
    left: 0;
    transform: scale(0,1);
    transition: transform 0.3s ease,color 0.3s ease;
    background: rgb(0, 68, 255);
}

.links ul li a:hover::after {
    transform: scale(1,1);
    cursor: pointer;
}

.links ul li a:hover{
    color: #fff;
    cursor: pointer;
}

.connect{
    margin-top: 6em;
    margin-left: -9em;
}

.connect h3{
    font-size: 2em;
    color: #ea3e88;
}

.connect .socialmedia{
    margin-top: 3em;
}

.connect .fa-brands,.connect .fa-regular{
    font-size: 2em;
    padding: 0.4em;
    transition: color 0.3s ease;
    cursor: pointer;
    color: #ccc;
}

.fa-instagram:hover{
    color: #a600ff;
    cursor: pointer;
}

.fa-facebook:hover{
    color: #009dff;
    cursor: pointer;
}

.fa-linkedin:hover{
    color: #0d00ff;
    cursor: pointer;
}

.fa-envelope:hover{
    color: #ff2200;
    cursor: pointer;
}

hr{
    width: 90%;
    bottom: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright{
    text-align: center;
    color: #fff;
}